.header{
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: white;
    border: 0;
    border-bottom-width: 1px;
    border-style: solid;
    border-color: rgb(228, 223, 223);
    z-index: 100;
}
.left-section{
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
}
.hamberg-icon{
    height: 25px;
    cursor: pointer;
    margin-left: 15px;
}
.youtube-icon{
    height: 20px;
    cursor: pointer;
}
.middle-section{
    flex: 1;
    margin-left: 70px;
    margin-right: 30px;
    max-width: 500px;
    display: flex;
    align-items: center;
}
.search-box{
    flex: 1;
    height: 35px;
    width: 0;
    padding-left: 11px ;
    border-width: 1px;
    border-color: rgb(196, 195, 195);
    border-radius: 2px;
    font-size: large;
    border-style: solid;
}
.search-box::placeholder{
     font-family: Roboto;
     font-size: 17px;
}
.search-icon{
    height: 39px;
    width: 60px;
    background-color: rgb(247, 243, 243);
    border-width: 1px;
    border-radius: 2px;
    border-color: rgb(207, 207, 207);
    margin-left: -1px;
    cursor: pointer;
}
.search-symbol{
    height:25px;
}
.search-icon,
.voice-search {
  position: relative;
}
.voice-search{
    border-radius: 90px;
    border-width: 1px;
    width: 40px;
    height: 40px;
    margin-left: 5px;
    border-color: rgb(248, 248, 248);
    background-color: rgb(255, 255, 255);
    cursor: pointer;
}
.voice-symbol{
    height: 25px;
}
.right-section{
    width: 230px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
}
.upload{
    height: 25px;
    width: 40px;
    margin-left: 20px;
    cursor: pointer;
}
.apps{
    height: 25px;
    width: 40px;
    margin-left: 20px;
    cursor: pointer;
}
.notifications{
    height: 25px;
    width: 40px;
    margin-left: 20px;
    cursor: pointer;
}
.account{
    height: 30px;
    width: 30px;
    border-radius: 40px;
    margin-right: 17px;
    margin-left: 20px;
    text-align: center;
    cursor: pointer;
}
.notification-icon{
    position: relative;
}
.notification-count{
    position: absolute;
    background-color: rgb(196, 1, 1);
    color: white;
    height: 15px;
    width: 15px;
    border-radius: 30px;
    text-align: center;
    font-size: 10px;
    top: 0;
    right: 0;
    cursor: pointer;
}